home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # ../scripts/start*
- # starting from CDROM/slides directory
- #
- PATH=/bin:/usr/bin:/usr/sbin
- INDYDEMODIR=WorkShop
- RUNDEMO="startcasedemo"
- #change to demo dir
- savedir=`pwd`
- cd ../demos/$INDYDEMODIR
-
- ./$RUNDEMO
-
- #change back to original dir
- cd $savedir
-
- exit 0
-